home *** CD-ROM | disk | FTP | other *** search
/ Champak 86 / (Vol 86) My Disc.iso / Games / pet_1112.swf / scripts / __Packages / caurina / transitions / SpecialProperty.as < prev    next >
Text File  |  2009-04-14  |  751b  |  29 lines

  1. class caurina.transitions.SpecialProperty
  2. {
  3.    function SpecialProperty(p_getFunction, p_setFunction, p_parameters)
  4.    {
  5.       this.getValue = p_getFunction;
  6.       this.setValue = p_setFunction;
  7.       this.parameters = p_parameters;
  8.    }
  9.    function getValue(p_obj, p_parameters)
  10.    {
  11.       return null;
  12.    }
  13.    function setValue(p_obj, p_value, p_parameters)
  14.    {
  15.    }
  16.    function toString()
  17.    {
  18.       var _loc2_ = "";
  19.       _loc2_ += "[SpecialProperty ";
  20.       _loc2_ += "getValue:" + this.getValue.toString();
  21.       _loc2_ += ", ";
  22.       _loc2_ += "setValue:" + this.setValue.toString();
  23.       _loc2_ += ", ";
  24.       _loc2_ += "parameters:" + this.parameters.toString();
  25.       _loc2_ += "]";
  26.       return _loc2_;
  27.    }
  28. }
  29.